home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / asmutil / disasm.zip / DOSKEYS.DOC < prev    next >
Text File  |  1988-06-03  |  3KB  |  95 lines

  1. The procedure for installing key changes under DOS 2.0
  2. is as follows:
  3.  
  4. Run the DOSKEYS.BAS program, it then creates a file which
  5. will look like this..
  6.  
  7. This file is named RICHKEY.KEY  'Just the name  I specified for the file
  8.  
  9. INSTALLING richkey.KEY
  10. 5;"DIR 0*.*";13p       ' 13 is a carriage return
  11. 6;"TYPE "p
  12. 7;"CLS";13p            ' The ascii 27 and the [ on the front of
  13. 8;"DIR";13p            ' each line is the key combination for the
  14. 4;"diR "p              ' ansi.sys program to install these values
  15. 5;"MORE <"p            ' for the function keys..... You can-not
  16. 6;"TYPE "p             ' print these characters on your printer.
  17. 7;"DEBUG "p
  18. 8;"COPY "p
  19. 9;"BASICA "p
  20. 0;"CD \"p
  21. 1;"C_FILES"p
  22. 2;"CAP-PC"p
  23. 3;"host";13p
  24. 4;"*.*";13p
  25. 5;"*"p
  26. 6;".*";13p
  27. 7;".ASM";13p
  28. 8;".BAS";13p
  29. 9;".BAT";13p
  30. 00;".COM";13p
  31. 01;".DOC";13p
  32. 02;".EXE";13p
  33. DONE
  34.  
  35. This is what I have in a file called
  36.  
  37. CONFIG.SYS
  38. (This file is just like AUTOEXEC.BAT , It is run first when
  39. system is booted or Ctrl+Alt+Del is pressed.)
  40.  
  41. device=vdisk.com
  42. device=ansi.sys
  43.  
  44. What this CONFIG.SYS DOES:
  45.  
  46. 1. Run the VDISK.COM program to
  47. install my Electronic Disk for DOS 2.0.
  48.  
  49. 2. It Runs a program called ANSI.SYS which installs the program
  50. to set up the Key configuration changes.
  51.  
  52. There is still more.......
  53. Now as one of the first steps in your AUTOEXEC.BAT file,
  54. you must have the statement
  55.  
  56. TYPE RICHKEY.KEY  ' or whatever you named the file in DOSKEYS.BAS
  57.  
  58. This is what does the whole thing. If you ever try to do a type
  59. of the file called (RICHKEY.KEY) it will try to install the
  60. keys again and might mess things up..
  61. Now the file called "RICHKEY.KEY" is what I called my file when
  62. I ran the DOSKEY.BAS program, call your's whatever you wish...
  63.  
  64. What happens is that when you boot your system (ON/OFF) the DOS looks
  65. for a file called CONFIG.SYS , if it exists then it executes this file
  66. prior to an AUTOEXEC.BAT file. the two statements that I have in my
  67. CONFIG.SYS are in there for configuring the Electronic Disk and the
  68. KEY changes...
  69.  
  70. Then the system looks for a file called AUTOEXEC.BAT, if it is found
  71. then it executes the batch job 1 step at a time..
  72. a sample AUTOEXEC.BAT file for someone with a quad board might be.....
  73.  
  74. TYPE RICHKEY.KEY           ' OR WHATEVER YOU CALL YOUR DOSKEY FILE
  75. PWRUPCLK                   ' FOR QUADRAM CLOCK SET OF SYTEM TIME
  76. PATH \DOS2-0;\UTILITY      ' THIS SETS MY SEARCH PATH FOR JOBS
  77. BREAK ON                   ' THIS SETS BREAK ON ALL THE TIME
  78. PROMPT $P$G                ' THIS DISPLAYS THE DIRECTORY I AM IN..
  79. SDIR                       ' THIS IS JUST WHAT IT LOOKS LIKE,
  80.                            ' IT RUNS SDIR.COM WHEN IT FINISHES THE BATCH
  81.                            ' JOB  AUTOEXEC.BAT
  82.  
  83. What you see when you boot your system is
  84.  
  85. Installing  richkey.key
  86.  
  87. DONE
  88.  
  89. Then your keys are set......
  90. GOOD LUCK, AND THANKS TO
  91. Vince Bly for the DOS keys program
  92. I hope that this clears up some questions without bringing up too many
  93. others. I have tryed to make it clear...
  94. Rich Schinnell, CAPITAL PC USER GROUP SOFTWARE EXCHANGE SIG.
  95.